home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-04-12 | 1.2 KB | 38 lines | [TEXT/R*ch] |
- /* Definitions of all the task types in Xconq.
- Copyright (C) 1993, 1994, 1995 Stanley T. Shebs.
-
- Xconq is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2, or (at your option)
- any later version. See the file COPYING. */
-
- DEF_TASK("none", TASK_NONE, "", do_none_task)
-
- /* In alphabetical order... */
-
- DEF_TASK("build", TASK_BUILD, "uUnn", do_build_task)
-
- DEF_TASK("research", TASK_RESEARCH, "un", do_research_task)
-
- DEF_TASK("capture", TASK_CAPTURE_UNIT, "uS", do_capture_unit_task)
-
- DEF_TASK("do-action", TASK_DO_ACTION, "na****", do_action_task)
-
- DEF_TASK("hit-position", TASK_HIT_POSITION, "xyz", do_hit_position_task)
-
- DEF_TASK("hit-unit", TASK_HIT_UNIT, "US", do_hit_unit_task)
-
- DEF_TASK("move-dir", TASK_MOVEDIR, "dn", do_movedir_task)
-
- DEF_TASK("move-to", TASK_MOVETO, "xyzn", do_moveto_task)
-
- DEF_TASK("occupy", TASK_OCCUPY, "U", do_occupy_task)
-
- DEF_TASK("pickup", TASK_PICKUP, "U", do_pickup_task)
-
- DEF_TASK("repair", TASK_REPAIR, "U", do_repair_task)
-
- DEF_TASK("resupply", TASK_RESUPPLY, "mU", do_resupply_task)
-
- DEF_TASK("sentry", TASK_SENTRY, "n", do_sentry_task)
-